home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-20 / cnlog20.zip / NOEOF.BAT < prev    next >
DOS Batch File  |  1986-12-10  |  203b  |  7 lines

  1. echo off
  2. echo "This will strip BACKUP.LOG of a final control-Z character"
  3. copy backup.log /a temp /b >NUL:
  4. erase backup.log
  5. rename temp backup.log
  6. echo "BACKUP.LOG is now ready for use by CONLOG"
  7.